Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

scarab-scss

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scarab-scss

Sass utility framework for rapid stylesheet development

  • 4.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
104
decreased by-54.59%
Maintainers
1
Weekly downloads
 
Created
Source

Scarab

npm Build Status

Sass utility framework

Scarab is a Sass utility framework designed for rapid stylesheet development.

Table of contents

Installation

To get started, add Scarab as a dev-dependency in your project via npm:

npm install scarab-scss --save-dev

Import scarab.scss at the beginning of your stylesheet:

@import 'path/to/node_modules/scarab-scss/_';

Configuration

Importing Scarab creates a new global variable, $SCARAB in your Sass project. This is where your stylesheet configuration is stored.

Scarab relies on the $SCARAB global variable for most of its functions and mixins to work.

To configure variables in your stylesheet, use the set() mixin:

// @function set( $defnition )
//
// Set a new value for a key in the $SCARAB configuration map
//
// @param { arglist } $definition - Definition of the new value
//
// set() takes an arglist, $definition as its parameters.
//
// The last argument in $definition should be the value that you want to set.
// Preceding that is a chain of keys in the $SCARAB variable where the value should be set.

// Example:
// Configure stylesheet breakpoints
@include set( breakpoints, (
	small:    600px,
	medium:   900px,
	large:    1300px
) );

// Replace the existing value of the 'medium' breakpoint
@include set( breakpoints, medium, 1024px );

// Define a new breakpoint, 'huge', and set its value to 1600px
@include set( breakpoints, huge, 1600px );

For more examples of configuration, have a look at how Scarab's default configuration is defined in scss/config/.

Features

No style declarations

Scarab is a utility framework, not a UI library. Therefore simply including the framework outputs zero CSS.

If you are looking for a barebones UI framework as a starting point for your project, check out Carapace.

Variable management

Easily access and manage your global stylesheet configuration with the set()mixin, and getter functions like get(), palette(), typeface(), and more.

Responsive property declarations

Declare responsive properties with the responsive() mixin. This allows you to easily manage the appearance of responsive components, and reduce media query clutter in your stylesheet.

// Example

.button {
	@include responsive(( padding-left, padding-right ), (
		base:   14px,
		medium: 18px,
		large:  22px
	));
}
// Output

.button {
	padding-left: 14px;
	padding-right: 14px;
}

// 'medium' breakpoint
@media (min-width: 1024px) {
	.button {
		padding-left: 18px;
		padding-right: 18px;
	}
}

// 'large' breakpoint
@media (min-width: 1300px) {
	.button {
		padding-left: 22px;
		padding-right: 22px;
	}
}

Responsive typography

Use the type-scale() mixin to generate typographic styles for an element at each breakpoint specified in the breakpoint map.

// Example

// config/type-scale.scss
//
// @include set( type-scale, subheading, (
// 	 base:  ( font-size: 0.8rem, line-height: 1.3 ),
// 	 small: ( font-size: 1rem,   line-height: 1.4 ),
// 	 huge:  ( font-size: 1.2rem, line-height: 1.5 )
// ) );

.subheading, h2 {
	@include type-scale( subheading );
}
// Output

.subheading, h2 {
	font-size: 0.8rem;
	line-height: 1.3;
}

// 'small' breakpoint
@media (min-width: 600px) {
	.subheading, h2 {
		font-size: 1rem;
		line-height: 1.4;
	}
}

// 'huge' breakpoint
@media (min-width: 1600px) {
	.subheading, h2 {
		font-size: 1.2rem;
		line-height: 1.5;
	}
}

Helper mixins

Scarab also provides a bunch of other helper mixins like transitions() and query(). More are planned in the future.

Development utilities

Included are the baseline-grid() and element-overlay() mixins, which overlay visual guides on top of the DOM. These help with achieving a consistent vertical rythmn.

Documentation

Documentation is under development and is available in docs/.

Resources

  • Scarab snippets — Sublime Text snippets for the Scarab Sass utility framework
  • Carapace — Sass UI framework for rapid prototyping. An extension of Scarab.

Keywords

FAQs

Package last updated on 05 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc